home *** CD-ROM | disk | FTP | other *** search
/ The Business Master (3rd Edition) / The Business Master (3rd Edition).iso / files / artience / amateur / actuary next >
Text File  |  1990-12-29  |  6KB  |  164 lines

  1. ! This rule file simulates the work of an actuary; the Amateur Reasoner
  2.   will predict the respondent's life expectancy according to his replies !
  3.  
  4. goal (expectancy)
  5.  
  6. if base = 72 & factor = plus 12 then expectancy = 84 years.
  7. if base = 67 & factor = plus 12 then expectancy = 79 years.
  8. if base = 64 & factor = plus 12 then expectancy = 76 years.
  9. if base = 62 & factor = plus 12 then expectancy = 74 years.
  10. if base = 60 & factor = plus 12 then expectancy = 72 years.
  11.  
  12. if base = 72 & factor = none then expectancy = 72 years.
  13. if base = 67 & factor = none then expectancy = 67 years.
  14. if base = 64 & factor = none then expectancy = 64 years.
  15. if base = 62 & factor = none then expectancy = 62 years.
  16. if base = 60 & factor = none then expectancy = 60 years.
  17.  
  18. if base = 72 & factor = minus 12 then expectancy = 60 years.
  19. if base = 67 & factor = minus 12 then expectancy = 55 years.
  20. if base = 64 & factor = minus 12 then expectancy = 52 years.
  21. if base = 62 & factor = minus 12 then expectancy = 50 years.
  22. if base = 60 & factor = minus 12 then expectancy = 48 years.
  23.  
  24. if age = 25 or less & gender = female then base = 72.
  25. if age = 25 or less & gender = male then base = 67.
  26. if age = 25 to 55 & gender = female then base = 67.
  27. if age = 25 to 55 & gender = male then base = 62.
  28. if age = 55 or more & gender = female then base = 64.
  29. if age = 55 or more & gender = male then base = 60.
  30. prompt (age) = What is your age?
  31. values (age) = 25 or less, 25 to 55, 55 or more.
  32. prompt (gender) = What is your gender?
  33. values (gender) = male, female.
  34.  
  35. if outlook = bleak & risk = yes & add = poor then factor = minus 12.
  36. if outlook = poor & risk = yes then factor = minus 12.
  37. if outlook = fair & risk = yes then factor = minus 12.
  38. if outlook = bleak & risk = no then factor = none.
  39. if outlook = fair & risk = no then factor = none.
  40. if outlook = good & risk = yes & add = good then factor = none.
  41. if outlook = excellent & risk = yes & add = good then factor = none.
  42. if outlook = good & risk = no then factor = plus 12.
  43. if outlook = excellent & risk = no & add = fair then factor = plus 12.
  44. if outlook = excellent & risk = no & add = poor then factor = plus 12.
  45. if outlook = excellent & risk = no & add = good then factor = plus 12.
  46.  
  47. if obese = yes & heart risk = yes
  48.  & blood pressure = above average & smoker = yes
  49.   then outlook = bleak.
  50.  
  51. if obese = yes & heart risk = yes
  52.  & blood pressure = above average & smoker = no
  53.   then outlook = poor.
  54.  
  55. if obese = yes & heart risk = yes
  56.  & blood pressure = average & smoker = yes
  57.   then outlook = bleak.
  58.  
  59. if obese = yes & heart risk = yes
  60.  & blood pressure = average & smoker = no
  61.   then outlook = poor.
  62.  
  63. if obese = yes & heart risk = no
  64.  & blood pressure = above average & smoker = yes
  65.   then outlook = poor.
  66.  
  67. if obese = yes & heart risk = no
  68.  & blood pressure = above average & smoker = no
  69.   then outlook = fair.
  70.  
  71. if obese = yes & heart risk = no
  72.  & blood pressure = average & smoker = yes
  73.   then outlook = fair.
  74.  
  75. if obese = yes & heart risk = no
  76.  & blood pressure = average & smoker = no
  77.   then outlook = good.
  78.  
  79. if obese = no & heart risk = yes
  80.  & blood pressure = above average & smoker = yes
  81.   then outlook = poor.
  82.  
  83. if obese = no & heart risk = yes
  84.  & blood pressure = above average & smoker = no
  85.   then outlook = fair.
  86.  
  87. if obese = no & heart risk = yes
  88.  & blood pressure = average & smoker = yes
  89.   then outlook = fair.
  90.  
  91. if obese = no & heart risk = yes
  92.  & blood pressure = average & smoker = no
  93.   then outlook = good.
  94.  
  95. if obese = no & heart risk = no
  96.  & blood pressure = above average & smoker = yes
  97.   then outlook = fair.
  98.  
  99. if obese = no & heart risk = no
  100.  & blood pressure = above average & smoker = no
  101.   then outlook = good.
  102.  
  103. if obese = no & heart risk = no
  104.  & blood pressure = average & smoker = yes
  105.   then outlook = fair.
  106.  
  107. if obese = no & heart risk = no
  108.  & blood pressure = average & smoker = no
  109.   then outlook = excellent.
  110.  
  111. if weight = 110 or less & build = small & gender = female then obese = no.
  112. if weight = 110 or less & build = large then obese = no.
  113. if weight = 110 to 170 & build = small & gender = female then obese = no.
  114. if weight = 110 to 170 & build = large & gender = female then obese = no.
  115. if weight = 110 to 170 & gender = male then obese = no.
  116. if weight = 170 or more & gender = female then obese = yes.
  117. if weight = 170 or more & gender = male & build = small then obese = yes.
  118. if weight = 170 or more & gender = male & build = large then obese = no.
  119. prompt (weight) = What is your weight in pounds ?
  120. values (weight) = 110 or less, 110 to 170, 170 or more.
  121. prompt (build) = What is your build ?
  122. values (build) = small, large.
  123.  
  124. if cholesterol = low & fat = high then heart risk = no.
  125. if cholesterol = low then heart risk = no.
  126. if cholesterol = normal then heart risk = no.
  127. if cholesterol = high & fat = high then heart risk = no.
  128. if cholesterol = high & fat = normal then heart risk = yes.
  129. prompt (cholesterol) = What is your animal fat intake?
  130. values (cholesterol) = low, normal, high.
  131. prompt (fat) = What is your unsaturated fat intake?
  132. values (fat) = normal, high.
  133.  
  134. if salt = high then blood pressure = above average.
  135. if salt = normal then blood pressure = average.
  136. prompt (salt) = What is your salt intake?
  137. values (salt) = normal, high.
  138.  
  139. if risk a = high then risk = yes.
  140. if risk a = medium & risk b = yes then risk = yes.
  141. if risk a = medium & risk b = no then risk = no.
  142. if risk a = low & risk b = yes then risk = yes.
  143. if risk a = low & risk b = no then risk = no.
  144.  
  145. if race = black then risk a = high.
  146. if race = caucasian then risk a = medium.
  147. if race = asian then risk a = low.
  148. prompt (race) = What is your racial type?
  149. values (race) = black, caucasian, asian.
  150.  
  151. if aggressive = yes then risk b = yes.
  152. if aggressive = no then risk b = no.
  153. prompt (aggressive) = Do you have an aggressive personality?
  154. values (aggressive) = yes, no.
  155.  
  156. if alcohol use = none then add = fair.
  157. if alcohol use = moderate then add = good.
  158. if alcohol use = excessive then add = poor.
  159. prompt (alcohol use) = What is your alcohol consumption?
  160. values (alcohol use) = none, moderate, excessive.
  161.  
  162. prompt (smoker) = Do you smoke?
  163. values (smoker) = yes, no.
  164.